home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 090 / pctj8404.arc / TONESET.ASM < prev   
Assembly Source File  |  1986-09-14  |  512b  |  15 lines

  1. ; ROUTINE TO SELECT TONE;
  2. toneset proc    far
  3. ;
  4.         push    ax              ; save registers
  5. ; load the time period into the timer
  6.         mov     al,cl           ; lower byte
  7.         out     42h,al          ; out to timer
  8.         mov     al,ch           ; upper byte
  9.         out     42h,al          ; out to timer
  10. ;
  11.         pop     ax              ; restore registers
  12.         ret
  13. ;
  14. toneset endp
  15.